home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / updates / update24.zoo / widget / diffs next >
Text File  |  1992-08-14  |  3KB  |  125 lines

  1. *** 1.2    1991/04/30 22:25:12
  2. --- Makefile.16    1992/08/14 15:44:32
  3. ***************
  4. *** 21,27 ****
  5.   CROSSBIN = $(CROSSDIR)/bin
  6.   
  7.   # Use -g if you want large, but sdb-,gdb-,dbx-able objects.
  8. ! OPTIONS= -O -I. -fomit-frame-pointer -fcombine-regs -mshort
  9.   CFLAGS = $(OPTIONS)
  10.   CC = $(CROSSBIN)/cgcc
  11.   AR = $(CROSSBIN)/car
  12. --- 21,27 ----
  13.   CROSSBIN = $(CROSSDIR)/bin
  14.   
  15.   # Use -g if you want large, but sdb-,gdb-,dbx-able objects.
  16. ! OPTIONS= -O2 -I. -fomit-frame-pointer -mshort
  17.   CFLAGS = $(OPTIONS)
  18.   CC = $(CROSSBIN)/cgcc
  19.   AR = $(CROSSBIN)/car
  20. ***************
  21. *** 37,45 ****
  22.   
  23.   all: ${WDGTLIB}
  24.   
  25. ! widget16.olb: widgetlib.o widget.h
  26.       rm -f $@
  27. !     $(AR) rvs $@ widgetlib.o
  28.   
  29.   wpage:  wpage.o
  30.       $(CC) ${OPTIONS} -o $@ wpage.o -lwidget16 ${CURSES}
  31. --- 37,45 ----
  32.   
  33.   all: ${WDGTLIB}
  34.   
  35. ! widget16.olb: widgetlib.o ident.o widget.h
  36.       rm -f $@
  37. !     $(AR) rvs $@ widgetlib.o ident.o
  38.   
  39.   wpage:  wpage.o
  40.       $(CC) ${OPTIONS} -o $@ wpage.o -lwidget16 ${CURSES}
  41. *** 1.2    1991/04/30 22:25:12
  42. --- Makefile.32    1992/08/14 15:44:32
  43. ***************
  44. *** 21,27 ****
  45.   CROSSBIN = $(CROSSDIR)/bin
  46.   
  47.   # Use -g if you want large, but sdb-,gdb-,dbx-able objects.
  48. ! OPTIONS= -O -I. -fomit-frame-pointer -fcombine-regs
  49.   CFLAGS = $(OPTIONS)
  50.   CC = $(CROSSBIN)/cgcc
  51.   AR = $(CROSSBIN)/car
  52. --- 21,27 ----
  53.   CROSSBIN = $(CROSSDIR)/bin
  54.   
  55.   # Use -g if you want large, but sdb-,gdb-,dbx-able objects.
  56. ! OPTIONS= -O2 -I. -fomit-frame-pointer
  57.   CFLAGS = $(OPTIONS)
  58.   CC = $(CROSSBIN)/cgcc
  59.   AR = $(CROSSBIN)/car
  60. ***************
  61. *** 37,45 ****
  62.   
  63.   all: ${WDGTLIB}
  64.   
  65. ! widget.olb: widgetlib.o widget.h
  66.       rm -f $@
  67. !     $(AR) rvs $@ widgetlib.o
  68.   
  69.   wpage32: wpage.o
  70.       $(CC) ${OPTIONS} -o $@ wpage.o -lwidget ${CURSES}
  71. --- 37,45 ----
  72.   
  73.   all: ${WDGTLIB}
  74.   
  75. ! widget.olb: widgetlib.o ident.o widget.h
  76.       rm -f $@
  77. !     $(AR) rvs $@ widgetlib.o ident.o
  78.   
  79.   wpage32: wpage.o
  80.       $(CC) ${OPTIONS} -o $@ wpage.o -lwidget ${CURSES}
  81. *** 1.1    1991/04/30 22:25:12
  82. --- PatchLev.h    1992/08/14 15:44:32
  83. ***************
  84. *** 1,5 ****
  85.   /*
  86. -  *    PathLevel: 3
  87.    *
  88.    *    the Patch Level above is to identify the version
  89.    *    of the all the files in this directory. given the above
  90. --- 1,7 ----
  91. + #define    PatchLevel "04"
  92.   /*
  93.    *
  94.    *    the Patch Level above is to identify the version
  95.    *    of the all the files in this directory. given the above
  96. *** 1.2    1991/04/30 22:25:12
  97. --- widget.h    1992/08/14 15:44:33
  98. ***************
  99. *** 27,32 ****
  100. --- 27,36 ----
  101.   #include <memory.h>
  102.   #include <curses.h>
  103.   
  104. + #ifdef __cplusplus
  105. + extern "C" {
  106. + #endif
  107.   /* definition for command widget entry in linked list */
  108.   struct    cmdwid{
  109.               WINDOW        *widget;
  110. ***************
  111. *** 177,181 ****
  112. --- 181,189 ----
  113.   
  114.   __EXTERN WIDGET widgetinput __PROTO((void));
  115.   __EXTERN WIDGETTYPE  widgettype __PROTO((WIDGET));
  116. + #ifdef __cplusplus
  117. + }
  118. + #endif
  119.   
  120.   #endif /* _WIDGET_H */
  121.